home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / lisp / compile.el < prev    next >
Lisp/Scheme  |  1993-08-18  |  44KB  |  1,127 lines

  1. ;;; compile.el --- run compiler as inferior of Emacs, parse error messages.
  2.  
  3. ;; Copyright (C) 1985, 86, 87, 93 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Roland McGrath <roland@prep.ai.mit.edu>
  6. ;; Maintainer: FSF
  7. ;; Keywords: tools, processes
  8.  
  9. ;; This file is part of GNU Emacs.
  10.  
  11. ;; GNU Emacs is free software; you can redistribute it and/or modify
  12. ;; it under the terms of the GNU General Public License as published by
  13. ;; the Free Software Foundation; either version 2, or (at your option)
  14. ;; any later version.
  15.  
  16. ;; GNU Emacs is distributed in the hope that it will be useful,
  17. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. ;; GNU General Public License for more details.
  20.  
  21. ;; You should have received a copy of the GNU General Public License
  22. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  23. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  
  25. ;;; Commentary:
  26.  
  27. ;; This package provides the compile and grep facilities documented in
  28. ;; the Emacs user's manual.
  29.  
  30. ;;; Code:
  31.  
  32. ;;;###autoload
  33. (defvar compilation-mode-hook nil
  34.   "*List of hook functions run by `compilation-mode' (see `run-hooks').")
  35.  
  36. ;;;###autoload
  37. (defconst compilation-window-height nil
  38.   "*Number of lines in a compilation window.  If nil, use Emacs default.")
  39.  
  40. (defvar compilation-error-list nil
  41.   "List of error message descriptors for visiting erring functions.
  42. Each error descriptor is a cons (or nil).  Its car is a marker
  43. pointing to an error message.  If its cdr is a marker, it points to
  44. the text of the line the message is about.  If its cdr is a cons, that
  45. cons's car is the name of the file the message is about, and its cdr
  46. is the number of the line the message is about.  Or its cdr may be nil
  47. if that error is not interesting.
  48.  
  49. The value may be t instead of a list; this means that the buffer of
  50. error messages should be reparsed the next time the list of errors is wanted.
  51.  
  52. Some other commands (like `diff') use this list to control the error
  53. message tracking facilites; if you change its structure, you should make
  54. sure you also change those packages.  Perhaps it is better not to change
  55. it at all.")
  56.  
  57. (defvar compilation-old-error-list nil
  58.   "Value of `compilation-error-list' after errors were parsed.")
  59.  
  60. (defvar compilation-parse-errors-function 'compilation-parse-errors 
  61.   "Function to call to parse error messages from a compilation.
  62. It takes args LIMIT-SEARCH and FIND-AT-LEAST.
  63. If LIMIT-SEARCH is non-nil, don't bother parsing past that location.
  64. If FIND-AT-LEAST is non-nil, don't bother parsing after finding that 
  65.  many new erros.
  66. It should read in the source files which have errors and set
  67. `compilation-error-list' to a list with an element for each error message
  68. found.  See that variable for more info.")
  69.  
  70. ;;;###autoload
  71. (defvar compilation-buffer-name-function nil
  72.   "Function to compute the name of a compilation buffer.
  73. The function receives one argument, the name of the major mode of the
  74. compilation buffer.  It should return a string.
  75. nil means compute the name with `(concat \"*\" (downcase major-mode) \"*\")'.")
  76.  
  77. ;;;###autoload
  78. (defvar compilation-finish-function nil
  79.   "*Function to call when a compilation process finishes.
  80. It is called with two arguments: the compilation buffer, and a string
  81. describing how the process finished.")
  82.  
  83. (defvar compilation-last-buffer nil
  84.   "The most recent compilation buffer.
  85. A buffer becomes most recent when its compilation is started
  86. or when it is used with \\[next-error] or \\[compile-goto-error].")
  87.  
  88. (defvar compilation-in-progress nil
  89.   "List of compilation processes now running.")
  90. (or (assq 'compilation-in-progress minor-mode-alist)
  91.     (setq minor-mode-alist (cons '(compilation-in-progress " Compiling")
  92.                  minor-mode-alist)))
  93.  
  94. (defvar compilation-parsing-end nil
  95.   "Position of end of buffer when last error messages were parsed.")
  96.  
  97. (defvar compilation-error-message "No more errors"
  98.   "Message to print when no more matches are found.")
  99.  
  100. (defvar compilation-num-errors-found)
  101.  
  102. (defvar compilation-error-regexp-alist
  103.   '(
  104.     ;; NOTE!  This first one is repeated in grep-regexp-alist, below.
  105.  
  106.     ;; 4.3BSD grep, cc, lint pass 1:
  107.     ;;     /usr/src/foo/foo.c(8): warning: w may be used before set
  108.     ;; or GNU utilities:
  109.     ;;     foo.c:8: error message
  110.     ;; or HP-UX 7.0 fc:
  111.     ;;     foo.f          :16    some horrible error message
  112.     ;;
  113.     ;; We'll insist that the number be followed by a colon or closing
  114.     ;; paren, because otherwise this matches just about anything
  115.     ;; containing a number with spaces around it.
  116.     ("\n\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\)[:) \t]" 1 2)
  117.  
  118.     ;; 4.3BSD lint pass 2
  119.     ;;     strcmp: variable # of args. llib-lc(359)  ::  /usr/src/foo/foo.c(8)
  120.     ("[ \t:]\\([^:( \t\n]+\\)[:(](+[ \t]*\\([0-9]+\\))[:) \t]*$" 1 2)
  121.  
  122.     ;; 4.3BSD lint pass 3
  123.     ;;     bloofle defined( /users/wolfgang/foo.c(4) ), but never used
  124.     ;; This used to be
  125.     ;; ("[ \t(]+\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]+" 1 2)
  126.     ;; which is regexp Impressionism - it matches almost anything!
  127.     ("([ \t]*\\([^:( \t\n]+\\)[:(][ \t]*\\([0-9]+\\))" 1 2)
  128.  
  129.     ;; Ultrix 3.0 f77:
  130.     ;;  Error on line 3 of t.f: Execution error unclassifiable statement    
  131.     ;; Unknown who does this:
  132.     ;;  Line 45 of "foo.c": bloofel undefined
  133.     ("\n\\(Error on \\)?[Ll]ine[ \t]+\\([0-9]+\\)[ \t]+\
  134. of[ \t]+\"?\\([^\"\n]+\\)\"?:" 3 2)
  135.  
  136.     ;; Apollo cc, 4.3BSD fc:
  137.     ;;    "foo.f", line 3: Error: syntax error near end of statement
  138.     ;; IBM RS6000:
  139.     ;;  "vvouch.c", line 19.5: 1506-046 (S) Syntax error.
  140.     ("\"\\([^,\" \n\t]+\\)\", line \\([0-9]+\\)[:.]" 1 2)
  141.  
  142.     ;; MIPS RISC CC - the one distributed with Ultrix:
  143.     ;;    ccom: Error: foo.c, line 2: syntax error
  144.     ("rror: \\([^,\" \n\t]+\\), line \\([0-9]+\\):" 1 2)
  145.  
  146.     ;; IBM AIX PS/2 C version 1.1:
  147.     ;;    ****** Error number 140 in line 8 of file errors.c ******
  148.     ("in line \\([0-9]+\\) of file \\([^ \n]+[^. \n]\\)\\.? " 2 1)
  149.     ;; IBM AIX lint is too painful to do right this way.  File name
  150.     ;; prefixes entire sections rather than being on each line.
  151.  
  152.     )
  153.   "Alist that specifies how to match errors in compiler output.
  154. Each element has the form (REGEXP FILE-IDX LINE-IDX).
  155. If REGEXP matches, the FILE-IDX'th subexpression gives the file
  156. name, and the LINE-IDX'th subexpression gives the line number.")
  157.  
  158. (defvar grep-regexp-alist
  159.   '(("^\\([^:( \t\n]+\\)[:( \t]+\\([0-9]+\\)[:) \t]" 1 2))
  160.   "Regexp used to match grep hits.  See `compilation-error-regexp-alist'.")
  161.  
  162. ;;;###autoload
  163. (defvar compilation-search-path '(nil)
  164.   "*List of directories to search for source files named in error messages.
  165. Elements should be directory names, not file names of directories.
  166. nil as an element means to try the default directory.")
  167.  
  168. (defvar compile-command "make -k "
  169.   "Last shell command used to do a compilation; default for next compilation.
  170.  
  171. Sometimes it is useful for files to supply local values for this variable.
  172. You might also use mode hooks to specify it in certain modes, like this:
  173.  
  174.     (setq c-mode-hook
  175.       '(lambda () (or (file-exists-p \"makefile\") (file-exists-p \"Makefile\")
  176.               (progn (make-local-variable 'compile-command)
  177.                  (setq compile-command
  178.                     (concat \"make -k \"
  179.                         buffer-file-name))))))")
  180.  
  181. (defconst compilation-enter-directory-regexp
  182.   ": Entering directory `\\(.*\\)'$"
  183.   "Regular expression matching lines that indicate a new current directory.
  184. This must contain one \\(, \\) pair around the directory name.
  185.  
  186. The default value matches lines printed by the `-w' option of GNU Make.")
  187.  
  188. (defconst compilation-leave-directory-regexp
  189.   ": Leaving directory `\\(.*\\)'$"
  190.   "Regular expression matching lines that indicate restoring current directory.
  191. This may contain one \\(, \\) pair around the name of the directory
  192. being moved from.  If it does not, the last directory entered \(by a
  193. line matching `compilation-enter-directory-regexp'\) is assumed.
  194.  
  195. The default value matches lines printed by the `-w' option of GNU Make.")
  196.  
  197. (defvar compilation-directory-stack nil
  198.   "Stack of previous directories for `compilation-leave-directory-regexp'.
  199. The head element is the directory the compilation was started in.")
  200.  
  201. ;; History of compile commands.
  202. (defvar compile-history nil)
  203. ;; History of grep commands.
  204. (defvar grep-history nil)
  205.  
  206. ;;;###autoload
  207. (defun compile (command)
  208.   "Compile the program including the current buffer.  Default: run `make'.
  209. Runs COMMAND, a shell command, in a separate process asynchronously
  210. with output going to the buffer `*compilation*'.
  211.  
  212. You can then use the command \\[next-error] to find the next error message
  213. and move to the source code that caused it.
  214.  
  215. To run more than one compilation at once, start one and rename the
  216. \`*compilation*' buffer to some other name with \\[rename-buffer].
  217. Then start the next one.
  218.  
  219. The name used for the buffer is actually whatever is returned by
  220. the function in `compilation-buffer-name-function', so you can set that
  221. to a function that generates a unique name."
  222.   (interactive (list (read-from-minibuffer "Compile command: "
  223.                        compile-command nil nil
  224.                        '(compile-history . 1))))
  225.   (setq compile-command command)
  226.   (save-some-buffers nil nil)
  227.   (compile-internal compile-command "No more errors"))
  228.  
  229. ;;;###autoload
  230. (defun grep (command-args)
  231.   "Run grep, with user-specified args, and collect output in a buffer.
  232. While grep runs asynchronously, you can use the \\[next-error] command
  233. to find the text that grep hits refer to.
  234.  
  235. This command uses a special history list for its arguments, so you can
  236. easily repeat a grep command."
  237.   (interactive
  238.    (list (read-from-minibuffer "Run grep (like this): "
  239.                    (if (eq system-type 'Windows-NT)
  240.                    "qgrep -n "
  241.                  "grep -n ")
  242.                    nil nil 'grep-history)))
  243.   (compile-internal (concat command-args 
  244.                 (if (eq system-type 'Windows-NT) "" " /dev/null"))
  245.             "No more grep hits" 
  246.             (if (eq system-type 'Windows-NT) "qgrep" "grep")
  247.             ;; Give it a simpler regexp to match.
  248.             nil grep-regexp-alist))
  249.  
  250. (defun compile-internal (command error-message
  251.                  &optional name-of-mode parser regexp-alist
  252.                  name-function)
  253.   "Run compilation command COMMAND (low level interface).
  254. ERROR-MESSAGE is a string to print if the user asks to see another error
  255. and there are no more errors.  Third argument NAME-OF-MODE is the name
  256. to display as the major mode in the compilation buffer.
  257.  
  258. Fourth arg PARSER is the error parser function (nil means the default).  Fifth
  259. arg REGEXP-ALIST is the error message regexp alist to use (nil means the
  260. default).  Sixth arg NAME-FUNCTION is a function called to name the buffer (nil
  261. means the default).  The defaults for these variables are the global values of
  262. \`compilation-parse-errors-function', `compilation-error-regexp-alist', and
  263. \`compilation-buffer-name-function', respectively.
  264.  
  265. Returns the compilation buffer created."
  266.   (let (outbuf)
  267.     (save-excursion
  268.       (or name-of-mode
  269.       (setq name-of-mode "Compilation"))
  270.       (setq outbuf
  271.         (get-buffer-create
  272.          (funcall (or name-function compilation-buffer-name-function
  273.               (function (lambda (mode)
  274.                       (concat "*" (downcase mode) "*"))))
  275.               name-of-mode)))
  276.       (set-buffer outbuf)
  277.       (let ((comp-proc (get-buffer-process (current-buffer))))
  278.     (if comp-proc
  279.         (if (or (not (eq (process-status comp-proc) 'run))
  280.             (yes-or-no-p
  281.              (format "A %s process is running; kill it? "
  282.                  name-of-mode)))
  283.         (condition-case ()
  284.             (progn
  285.               (interrupt-process comp-proc)
  286.               (sit-for 1)
  287.               (delete-process comp-proc))
  288.           (error nil))
  289.           (error "Cannot have two processes in `%s' at once"
  290.              (buffer-name))
  291.           )))
  292.       ;; In case the compilation buffer is current, make sure we get the global
  293.       ;; values of compilation-error-regexp-alist, etc.
  294.       (kill-all-local-variables))
  295.     (let ((regexp-alist (or regexp-alist compilation-error-regexp-alist))
  296.       (parser (or parser compilation-parse-errors-function))
  297.       (thisdir default-directory)
  298.       outwin) 
  299.       (save-excursion
  300.     ;; Clear out the compilation buffer and make it writable.
  301.     ;; Change its default-directory to the directory where the compilation
  302.     ;; will happen, and insert a `cd' command to indicate this.
  303.     (set-buffer outbuf)
  304.     (setq buffer-read-only nil)
  305.     (erase-buffer)
  306.     (setq default-directory thisdir)
  307.     (insert "cd " thisdir "\n" command "\n")
  308.     (set-buffer-modified-p nil))
  309.       ;; If we're already in the compilation buffer, go to the end
  310.       ;; of the buffer, so point will track the compilation output.
  311.       (if (eq outbuf (current-buffer))
  312.       (goto-char (point-max)))
  313.       ;; Pop up the compilation buffer.
  314.       (setq outwin (display-buffer outbuf))
  315.       (save-excursion
  316.     (set-buffer outbuf)
  317.     (compilation-mode)
  318.     (buffer-disable-undo (current-buffer))
  319.     (setq buffer-read-only t)
  320.     (set (make-local-variable 'compilation-parse-errors-function) parser)
  321.     (set (make-local-variable 'compilation-error-message) error-message)
  322.     (set (make-local-variable 'compilation-error-regexp-alist) regexp-alist)
  323.     (setq default-directory thisdir
  324.           compilation-directory-stack (list default-directory))
  325.     (set-window-start outwin (point-min))
  326.     (setq mode-name name-of-mode)
  327.     (or (eq outwin (selected-window))
  328.         (set-window-point outwin (point-min)))
  329.     (and compilation-window-height
  330.          (= (window-width outwin) (frame-width))
  331.          (let ((w (selected-window)))
  332.            (unwind-protect
  333.            (progn
  334.              (select-window outwin)
  335.              (enlarge-window (- compilation-window-height
  336.                     (window-height))))
  337.          (select-window w))))
  338.     ;; Start the compilation.
  339.     (let ((proc (start-process-shell-command (downcase mode-name)
  340.                          outbuf
  341.                          command)))
  342.       (set-process-sentinel proc 'compilation-sentinel)
  343.       (set-process-filter proc 'compilation-filter)
  344.       (set-marker (process-mark proc) (point) outbuf)
  345.       (setq compilation-in-progress (cons proc compilation-in-progress)))))
  346.     ;; Make it so the next C-x ` will use this buffer.
  347.     (setq compilation-last-buffer outbuf)))
  348.  
  349. (defvar compilation-minor-mode-map
  350.   (let ((map (make-sparse-keymap)))
  351.     (define-key map "\C-c\C-c" 'compile-goto-error)
  352.     (define-key map "\C-c\C-k" 'kill-compilation)
  353.     (define-key map "\M-n" 'compilation-next-error)
  354.     (define-key map "\M-p" 'compilation-previous-error)
  355.     (define-key map "\M-{" 'compilation-previous-file)
  356.     (define-key map "\M-}" 'compilation-next-file)
  357.     map)
  358.   "Keymap for `compilation-minor-mode'.")
  359.  
  360. (defvar compilation-mode-map
  361.   (let ((map (cons 'keymap compilation-minor-mode-map)))
  362.     (define-key map " " 'scroll-up)
  363.     (define-key map "\^?" 'scroll-down)
  364.     map)
  365.   "Keymap for compilation log buffers.
  366. `compilation-minor-mode-map' is a cdr of this.")
  367.  
  368. (defun compilation-mode ()
  369.   "Major mode for compilation log buffers.
  370. \\<compilation-mode-map>To visit the source for a line-numbered error,
  371. move point to the error message line and type \\[compile-goto-error].
  372. To kill the compilation, type \\[kill-compilation].
  373.  
  374. Runs `compilation-mode-hook' with `run-hooks' (which see)."
  375.   (interactive)
  376.   (fundamental-mode)
  377.   (use-local-map compilation-mode-map)
  378.   (setq major-mode 'compilation-mode
  379.     mode-name "Compilation")
  380.   (compilation-setup)
  381.   (run-hooks 'compilation-mode-hook))
  382.  
  383. ;; Prepare the buffer for the compilation parsing commands to work.
  384. (defun compilation-setup ()
  385.   ;; Make the buffer's mode line show process state.
  386.   (setq mode-line-process '(": %s"))
  387.   (set (make-local-variable 'compilation-error-list) nil)
  388.   (set (make-local-variable 'compilation-old-error-list) nil)
  389.   (set (make-local-variable 'compilation-parsing-end) 1)
  390.   (set (make-local-variable 'compilation-directory-stack) nil)
  391.   (setq compilation-last-buffer (current-buffer)))
  392.  
  393. (defvar compilation-minor-mode nil
  394.   "Non-nil when in compilation-minor-mode.
  395. In this minor mode, all the error-parsing commands of the
  396. Compilation major mode are available.")
  397.  
  398. (or (assq 'compilation-minor-mode minor-mode-alist)
  399.     (setq minor-mode-alist (cons '(compilation-minor-mode " Compilation")
  400.                  minor-mode-alist)))
  401. (or (assq 'compilation-minor-mode minor-mode-map-alist)
  402.     (setq minor-mode-map-alist (cons (cons 'compilation-minor-mode
  403.                        compilation-minor-mode-map)
  404.                      minor-mode-map-alist)))
  405.  
  406. (defun compilation-minor-mode (&optional arg)
  407.   "Toggle compilation minor mode.
  408. With arg, turn compilation mode on if and only if arg is positive.
  409. See `compilation-mode'."
  410.   (interactive "P")
  411.   (if (setq compilation-minor-mode (if (null arg)
  412.                        (null compilation-minor-mode)
  413.                      (> (prefix-numeric-value arg) 0)))
  414.       (compilation-setup)))
  415.  
  416. ;; Called when compilation process changes state.
  417. (defun compilation-sentinel (proc msg)
  418.   "Sentinel for compilation buffers."
  419.   (let ((buffer (process-buffer proc)))
  420.     (if (memq (process-status proc) '(signal exit))
  421.     (progn
  422.       (if (null (buffer-name buffer))
  423.           ;; buffer killed
  424.           (set-process-buffer proc nil)
  425.         (let ((obuf (current-buffer))
  426.           omax opoint)
  427.           ;; save-excursion isn't the right thing if
  428.           ;; process-buffer is current-buffer
  429.           (unwind-protect
  430.           (progn
  431.             ;; Write something in the compilation buffer
  432.             ;; and hack its mode line.
  433.             (set-buffer buffer)
  434.             (let ((buffer-read-only nil))
  435.               (setq omax (point-max)
  436.                 opoint (point))
  437.               (goto-char omax)
  438.               ;; Record where we put the message, so we can ignore it
  439.               ;; later on.
  440.               (insert ?\n mode-name " " msg)
  441.               (forward-char -1)
  442.               (insert " at " (substring (current-time-string) 0 19))
  443.               (forward-char 1)
  444.               (setq mode-line-process
  445.                 (concat ": "
  446.                     (symbol-name (process-status proc))))
  447.               ;; Since the buffer and mode line will show that the
  448.               ;; process is dead, we can delete it now.  Otherwise it
  449.               ;; will stay around until M-x list-processes.
  450.               (delete-process proc)
  451.               ;; Force mode line redisplay soon.
  452.               (set-buffer-modified-p (buffer-modified-p)))
  453.             (if (and opoint (< opoint omax))
  454.             (goto-char opoint))
  455.             (if compilation-finish-function
  456.             (funcall compilation-finish-function buffer msg)))
  457.         (set-buffer obuf))))
  458.       (setq compilation-in-progress (delq proc compilation-in-progress))
  459.       ))))
  460.  
  461. (defun compilation-filter (proc string)
  462.   "Process filter for compilation buffers.
  463. Just inserts the text, but uses `insert-before-markers'."
  464.   (save-excursion
  465.     (set-buffer (process-buffer proc))
  466.     (let ((buffer-read-only nil))
  467.       (save-excursion
  468.     (goto-char (process-mark proc))
  469.     (insert-before-markers string)
  470.     (set-marker (process-mark proc) (point))))))
  471.  
  472. ;; Return the cdr of compilation-old-error-list for the error containing point.
  473. (defun compile-error-at-point ()
  474.   (compile-reinitialize-errors nil (point))
  475.   (let ((errors compilation-old-error-list))
  476.     (while (and errors
  477.         (> (point) (car (car errors))))
  478.       (setq errors (cdr errors)))
  479.     errors))
  480.  
  481. (defun compilation-next-error (n)
  482.   "Move point to the next error in the compilation buffer.
  483. Does NOT find the source line like \\[next-error]."
  484.   (interactive "p")
  485.   (or (compilation-buffer-p (current-buffer))
  486.       (error "Not in a compilation buffer."))
  487.   (setq compilation-last-buffer (current-buffer))
  488.  
  489.   (let ((errors (compile-error-at-point)))
  490.  
  491.     ;; Move to the error after the one containing point.
  492.     (goto-char (car (if (< n 0)
  493.             (let ((i 0)
  494.                   (e compilation-old-error-list))
  495.               ;; See how many cdrs away ERRORS is from the start.
  496.               (while (not (eq e errors))
  497.                 (setq i (1+ i)
  498.                   e (cdr e)))
  499.               (if (> (- n) i)
  500.                   (error "Moved back past first error")
  501.                 (nth (+ i n) compilation-old-error-list)))
  502.               (let ((compilation-error-list (cdr errors)))
  503.             (compile-reinitialize-errors nil nil n)
  504.             (if compilation-error-list
  505.                 (nth (1- n) compilation-error-list)
  506.               (error "Moved past last error"))))))))
  507.  
  508. (defun compilation-previous-error (n)
  509.   "Move point to the previous error in the compilation buffer.
  510. Does NOT find the source line like \\[next-error]."
  511.   (interactive "p")
  512.   (compilation-next-error (- n)))
  513.  
  514.  
  515. (defun compile-file-of-error (data)
  516.   (setq data (cdr data))
  517.   (if (markerp data)
  518.       (buffer-file-name (marker-buffer data))
  519.     (car data)))
  520.  
  521. (defun compilation-next-file (n)
  522.   "Move point to the next error for a different file than the current one."
  523.   (interactive "p")
  524.   (or (compilation-buffer-p (current-buffer))
  525.       (error "Not in a compilation buffer."))
  526.   (setq compilation-last-buffer (current-buffer))
  527.  
  528.   (let ((reversed (< n 0))
  529.     errors file)
  530.  
  531.     (if (not reversed)
  532.     (setq errors (or (compile-error-at-point)
  533.              (error "Moved past last error")))
  534.  
  535.       ;; Get a reversed list of the errors up through the one containing point.
  536.       (compile-reinitialize-errors nil (point))
  537.       (setq errors (reverse compilation-old-error-list)
  538.         n (- n))
  539.  
  540.       ;; Ignore errors after point.  (car ERRORS) will be the error
  541.       ;; containing point, (cadr ERRORS) the one before it.
  542.       (while (and errors
  543.           (< (point) (car (car errors))))
  544.     (setq errors (cdr errors))))
  545.  
  546.     (while (> n 0)
  547.       (setq file (compile-file-of-error (car errors)))
  548.  
  549.       ;; Skip past the other errors for this file.
  550.       (while (string= file
  551.               (compile-file-of-error
  552.                (car (or errors
  553.                 (if reversed
  554.                     (error "%s the first erring file" file)
  555.                   (let ((compilation-error-list nil))
  556.                     ;; Parse some more.
  557.                     (compile-reinitialize-errors nil nil 2)
  558.                     (setq errors compilation-error-list)))
  559.                 (error "%s is the last erring file" file)))))
  560.     (setq errors (cdr errors)))
  561.  
  562.       (setq n (1- n)))
  563.  
  564.     ;; Move to the following error.
  565.     (goto-char (car (car (or errors
  566.                  (if reversed
  567.                  (error "This is the first erring file")
  568.                    (let ((compilation-error-list nil))
  569.                  ;; Parse the last one.
  570.                  (compile-reinitialize-errors nil nil 1)
  571.                  compilation-error-list))))))))
  572.  
  573. (defun compilation-previous-file (n)
  574.   "Move point to the previous error for a different file than the current one."
  575.   (interactive "p")
  576.   (compilation-next-file (- n)))
  577.  
  578.  
  579. (defun kill-compilation ()
  580.   "Kill the process made by the \\[compile] command."
  581.   (interactive)
  582.   (let ((buffer (compilation-find-buffer)))
  583.     (if (get-buffer-process buffer)
  584.     (interrupt-process (get-buffer-process buffer))
  585.       (error "The compilation process is not running."))))
  586.  
  587.  
  588. ;; Parse any new errors in the compilation buffer,
  589. ;; or reparse from the beginning if the user has asked for that.
  590. (defun compile-reinitialize-errors (argp &optional limit-search find-at-least)
  591.   (save-excursion
  592.     (set-buffer compilation-last-buffer)
  593.     ;; If we are out of errors, or if user says "reparse",
  594.     ;; discard the info we have, to force reparsing.
  595.     (if (or (eq compilation-error-list t)
  596.         (consp argp))
  597.     (progn (compilation-forget-errors)
  598.            (setq compilation-parsing-end 1)))
  599.     (if (and compilation-error-list
  600.          (or (not limit-search)
  601.          (> compilation-parsing-end limit-search))
  602.          (or (not find-at-least)
  603.          (> (length compilation-error-list) find-at-least)))
  604.     ;; Since compilation-error-list is non-nil, it points to a specific
  605.     ;; error the user wanted.  So don't move it around.
  606.     nil
  607.       (switch-to-buffer compilation-last-buffer)
  608.       (set-buffer-modified-p nil)
  609.       (if (< compilation-parsing-end (point-max))
  610.       (let ((at-start (= compilation-parsing-end 1)))
  611.         (funcall compilation-parse-errors-function
  612.              limit-search find-at-least)
  613.         ;; Remember the entire list for compilation-forget-errors.
  614.         ;; If this is an incremental parse, append to previous list.
  615.         (if at-start
  616.         (setq compilation-old-error-list compilation-error-list)
  617.           (setq compilation-old-error-list
  618.             (nconc compilation-old-error-list compilation-error-list)))
  619.         )))))
  620.  
  621. (defun compile-goto-error (&optional argp)
  622.   "Visit the source for the error message point is on.
  623. Use this command in a compilation log buffer.
  624. \\[universal-argument] as a prefix arg means to reparse the buffer's error messages first;
  625. other kinds of prefix arguments are ignored."
  626.   (interactive "P")
  627.   (or (compilation-buffer-p (current-buffer))
  628.       (error "Not in a compilation buffer."))
  629.   (setq compilation-last-buffer (current-buffer))
  630.   (compile-reinitialize-errors argp (point))
  631.  
  632.   ;; Move to bol; the marker for the error on this line will point there.
  633.   (beginning-of-line)
  634.  
  635.   ;; Move compilation-error-list to the elt of compilation-old-error-list
  636.   ;; we want.
  637.   (setq compilation-error-list compilation-old-error-list)
  638.   (while (and compilation-error-list
  639.           (> (point) (car (car compilation-error-list))))
  640.     (setq compilation-error-list (cdr compilation-error-list)))
  641.  
  642.   ;; Move to another window, so that next-error's window changes
  643.   ;; result in the desired setup.
  644.   (or (one-window-p)
  645.       (progn
  646.     (other-window -1)
  647.     ;; other-window changed the selected buffer,
  648.     ;; but we didn't want to do that.
  649.     (set-buffer compilation-last-buffer)))
  650.  
  651.   (next-error 1))
  652.  
  653. (defun compilation-buffer-p (buffer)
  654.   (assq 'compilation-error-list (buffer-local-variables buffer)))
  655.  
  656. ;; Return a compilation buffer.
  657. ;; If the current buffer is a compilation buffer, return it.
  658. ;; If compilation-last-buffer is set to a live buffer, use that.
  659. ;; Otherwise, look for a compilation buffer and signal an error
  660. ;; if there are none.
  661. (defun compilation-find-buffer (&optional other-buffer)
  662.   (if (and (not other-buffer)
  663.        (compilation-buffer-p (current-buffer)))
  664.       ;; The current buffer is a compilation buffer.
  665.       (current-buffer)
  666.     (if (and compilation-last-buffer (buffer-name compilation-last-buffer)
  667.          (or (not other-buffer) (not (eq compilation-last-buffer
  668.                          (current-buffer)))))
  669.     compilation-last-buffer
  670.       (let ((buffers (buffer-list)))
  671.     (while (and buffers (or (not (compilation-buffer-p (car buffers)))
  672.                 (and other-buffer
  673.                      (eq (car buffers) (current-buffer)))))
  674.       (setq buffers (cdr buffers)))
  675.     (if buffers
  676.         (car buffers)
  677.       (or (and other-buffer
  678.            (compilation-buffer-p (current-buffer))
  679.            ;; The current buffer is a compilation buffer.
  680.            (progn
  681.              (if other-buffer
  682.              (message "This is the only compilation buffer."))
  683.              (current-buffer)))
  684.           (error "No compilation started!")))))))
  685.  
  686. ;;;###autoload
  687. (defun next-error (&optional argp)
  688.   "Visit next compilation error message and corresponding source code.
  689. This operates on the output from the \\[compile] command.
  690. If all preparsed error messages have been processed,
  691. the error message buffer is checked for new ones.
  692.  
  693. A prefix arg specifies how many error messages to move;
  694. negative means move back to previous error messages.
  695. Just C-u as a prefix means reparse the error message buffer
  696. and start at the first error.
  697.  
  698. \\[next-error] normally applies to the most recent compilation started,
  699. but as long as you are in the middle of parsing errors from one compilation
  700. output buffer, you stay with that compilation output buffer.
  701.  
  702. Use \\[next-error] in a compilation output buffer to switch to
  703. processing errors from that compilation.
  704.  
  705. See variables `compilation-parse-errors-function' and
  706. \`compilation-error-regexp-alist' for customization ideas."
  707.   (interactive "P")
  708.   (setq compilation-last-buffer (compilation-find-buffer))
  709.   (compile-reinitialize-errors argp nil
  710.                    ;; We want to pass a number here only if
  711.                    ;; we got a numeric prefix arg, not just C-u.
  712.                    (and (not (consp argp))
  713.                     (1- (prefix-numeric-value argp))))
  714.   ;; Make ARGP nil if the prefix arg was just C-u,
  715.   ;; since that means to reparse the errors, which the
  716.   ;; compile-reinitialize-errors call just did.
  717.   ;; Now we are only interested in a numeric prefix arg.
  718.   (if (consp argp)
  719.       (setq argp nil))
  720.   (let (next-errors next-error)
  721.     (save-excursion
  722.       (set-buffer compilation-last-buffer)
  723.       ;; compilation-error-list points to the "current" error.
  724.       (setq next-errors (nthcdr (1- (prefix-numeric-value argp))
  725.                 compilation-error-list)
  726.         next-error (car next-errors))
  727.       (while
  728.       (progn
  729.         (if (null next-error)
  730.         (progn
  731.           (if argp (if (> (prefix-numeric-value argp) 0)
  732.                    (error "Moved past last error")
  733.                  (error "Moved back past first error")))
  734.           (compilation-forget-errors)
  735.           (error (concat compilation-error-message
  736.                  (and (get-buffer-process (current-buffer))
  737.                       (eq (process-status
  738.                        (get-buffer-process
  739.                         (current-buffer)))
  740.                       'run)
  741.                       " yet"))))
  742.           (setq compilation-error-list (cdr next-errors))
  743.           (if (null (cdr next-error))
  744.           ;; This error is boring.  Go to the next.
  745.           t
  746.         (or (markerp (cdr next-error))
  747.             ;; This error has a filename/lineno pair.
  748.             ;; Find the file and turn it into a marker.
  749.             (let* ((fileinfo
  750.                 (cons (file-name-directory (car (cdr next-error)))
  751.                   (file-name-nondirectory
  752.                    (car (cdr next-error)))))
  753.                (buffer (compilation-find-file (cdr fileinfo)
  754.                               (car fileinfo)
  755.                               (car next-error))))
  756.               (if (null buffer)
  757.               ;; We can't find this error's file.
  758.               ;; Remove all errors in the same file.
  759.               (progn
  760.                 (setq next-errors compilation-old-error-list)
  761.                 (while next-errors
  762.                   (and (consp (cdr (car next-errors)))
  763.                    (equal (car (cdr (car next-errors)))
  764.                       fileinfo)
  765.                    (progn
  766.                      (set-marker (car (car next-errors)) nil)
  767.                      (setcdr (car next-errors) nil)))
  768.                   (setq next-errors (cdr next-errors)))
  769.                 ;; Look for the next error.
  770.                 t)
  771.             ;; We found the file.  Get a marker for this error.
  772.             ;; compilation-old-error-list is a buffer-local
  773.             ;; variable, so we must be careful to extract its value
  774.             ;; before switching to the source file buffer.
  775.             (let ((errors compilation-old-error-list)
  776.                   (last-line (cdr (cdr next-error))))
  777.               (set-buffer buffer)
  778.               (save-excursion
  779.                 (save-restriction
  780.                   (widen)
  781.                   (goto-line last-line)
  782.                   (beginning-of-line)
  783.                   (setcdr next-error (point-marker))
  784.                   ;; Make all the other error messages referring
  785.                   ;; to the same file have markers into the buffer.
  786.                   (while errors
  787.                 (and (consp (cdr (car errors)))
  788.                      (equal (car (cdr (car errors))) fileinfo)
  789.                      (let ((this (cdr (cdr (car errors))))
  790.                        (lines (- (cdr (cdr (car errors)))
  791.                              last-line)))
  792.                        (if (eq selective-display t)
  793.                        (if (< lines 0)
  794.                            (re-search-backward "[\n\C-m]"
  795.                                    nil 'end
  796.                                    (- lines))
  797.                          (re-search-forward "[\n\C-m]"
  798.                                 nil 'end
  799.                                 lines))
  800.                      (forward-line lines))
  801.                        (setq last-line this)
  802.                        (setcdr (car errors) (point-marker))))
  803.                 (setq errors (cdr errors)))))))))
  804.         ;; If we didn't get a marker for this error,
  805.         ;; go on to the next one.
  806.         (not (markerp (cdr next-error))))))
  807.     (setq next-errors compilation-error-list
  808.           next-error (car next-errors))))
  809.  
  810.     ;; Skip over multiple error messages for the same source location,
  811.     ;; so the next C-x ` won't go to an error in the same place.
  812.     (while (and compilation-error-list
  813.         (equal (cdr (car compilation-error-list)) (cdr next-error)))
  814.       (setq compilation-error-list (cdr compilation-error-list)))
  815.  
  816.     ;; We now have a marker for the position of the error.
  817.     (switch-to-buffer (marker-buffer (cdr next-error)))
  818.     (goto-char (cdr next-error))
  819.     ;; If narrowing got in the way of
  820.     ;; going to the right place, widen.
  821.     (or (= (point) (marker-position (cdr next-error)))
  822.     (progn
  823.       (widen)
  824.       (goto-char (cdr next-error))))
  825.  
  826.     ;; Show compilation buffer in other window, scrolled to this error.
  827.     (let* ((pop-up-windows t)
  828.        (w (display-buffer (marker-buffer (car next-error)))))
  829.       (set-window-point w (car next-error))
  830.       (set-window-start w (car next-error)))))
  831.  
  832. ;;;###autoload
  833. (define-key ctl-x-map "`" 'next-error)
  834.  
  835. ;; Find a buffer for file FILENAME.
  836. ;; Search the directories in compilation-search-path.
  837. ;; A nil in compilation-search-path means to try the
  838. ;; current directory, which is passed in DIR.
  839. ;; If FILENAME is not found at all, ask the user where to find it.
  840. ;; Pop up the buffer containing MARKER and scroll to MARKER if we ask the user.
  841. (defun compilation-find-file (filename dir marker)
  842.   (let ((dirs compilation-search-path)
  843.     result name)
  844.     (while (and dirs (null result))
  845.       (setq name (expand-file-name filename (or (car dirs) dir))
  846.         result (and (file-exists-p name)
  847.             (find-file-noselect name))
  848.         dirs (cdr dirs)))
  849.     (or result
  850.     ;; The file doesn't exist.
  851.     ;; Ask the user where to find it.
  852.     ;; If he hits C-g, then the next time he does
  853.     ;; next-error, he'll skip past it.
  854.     (progn
  855.       (let* ((pop-up-windows t)
  856.          (w (display-buffer (marker-buffer marker))))
  857.         (set-window-point w marker)
  858.         (set-window-start w marker))
  859.       (setq name
  860.         (expand-file-name
  861.          (read-file-name
  862.           (format "Find this error in: (default %s) "
  863.               filename) dir filename t)))
  864.       (if (file-directory-p name)
  865.           (setq name (concat (file-name-as-directory name) filename)))
  866.       (if (file-exists-p name)
  867.           (find-file-noselect name))))))
  868.  
  869. ;; Set compilation-error-list to nil, and unchain the markers that point to the
  870. ;; error messages and their text, so that they no longer slow down gap motion.
  871. ;; This would happen anyway at the next garbage collection, but it is better to
  872. ;; do it right away.
  873. (defun compilation-forget-errors ()
  874.   (while compilation-old-error-list
  875.     (let ((next-error (car compilation-old-error-list)))
  876.       (set-marker (car next-error) nil)
  877.       (if (markerp (cdr next-error))
  878.       (set-marker (cdr next-error) nil)))
  879.     (setq compilation-old-error-list (cdr compilation-old-error-list)))
  880.   (setq compilation-error-list nil
  881.     compilation-directory-stack nil))
  882.  
  883.  
  884. (defun count-regexp-groupings (regexp)
  885.   "Return the number of \\( ... \\) groupings in REGEXP (a string)."
  886.   (let ((groupings 0)
  887.     (len (length regexp))
  888.     (i 0)
  889.     c)
  890.     (while (< i len)
  891.       (setq c (aref regexp i)
  892.         i (1+ i))
  893.       (cond ((= c ?\[)
  894.          ;; Find the end of this [...].
  895.          (while (and (< i len)
  896.              (not (= (aref regexp i) ?\])))
  897.            (setq i (1+ i))))
  898.         ((= c ?\\)
  899.          (if (< i len)
  900.          (progn
  901.            (setq c (aref regexp i)
  902.              i (1+ i))
  903.            (if (= c ?\))
  904.                ;; We found the end of a grouping,
  905.                ;; so bump our counter.
  906.                (setq groupings (1+ groupings))))))))
  907.     groupings))
  908.  
  909. (defun compilation-parse-errors (limit-search find-at-least)
  910.   "Parse the current buffer as grep, cc or lint error messages.
  911. See variable `compilation-parse-errors-function' for the interface it uses."
  912.   (setq compilation-error-list nil)
  913.   (message "Parsing error messages...")
  914.   (let (text-buffer orig orig-expanded parent-expanded
  915.     regexp enter-group leave-group error-group
  916.     alist subexpr error-regexp-groups
  917.     (found-desired nil)
  918.     (compilation-num-errors-found 0))
  919.  
  920.     ;; Don't reparse messages already seen at last parse.
  921.     (goto-char compilation-parsing-end)
  922.     ;; Don't parse the first two lines as error messages.
  923.     ;; This matters for grep.
  924.     (if (bobp)
  925.     (progn
  926.       (forward-line 2)
  927.       ;; Move back so point is before the newline.
  928.       ;; This matters because some error regexps use \n instead of ^
  929.       ;; to be faster.
  930.       (forward-char -1)))
  931.  
  932.     ;; Compile all the regexps we want to search for into one.
  933.     (setq regexp (concat "\\(" compilation-enter-directory-regexp "\\)\\|"
  934.              "\\(" compilation-leave-directory-regexp "\\)\\|"
  935.              "\\(" (mapconcat (function
  936.                        (lambda (elt)
  937.                          (concat "\\(" (car elt) "\\)")))
  938.                       compilation-error-regexp-alist
  939.                       "\\|") "\\)"))
  940.  
  941.     ;; Find out how many \(...\) groupings are in each of the regexps, and set
  942.     ;; *-GROUP to the grouping containing each constituent regexp (whose
  943.     ;; subgroups will come immediately thereafter) of the big regexp we have
  944.     ;; just constructed.
  945.     (setq enter-group 1
  946.       leave-group (+ enter-group
  947.              (count-regexp-groupings
  948.               compilation-enter-directory-regexp)
  949.              1)
  950.       error-group (+ leave-group
  951.              (count-regexp-groupings
  952.               compilation-leave-directory-regexp)
  953.              1))
  954.  
  955.     ;; Compile an alist (IDX FILE LINE), where IDX is the number of the
  956.     ;; subexpression for an entire error-regexp, and FILE and LINE are the
  957.     ;; numbers for the subexpressions giving the file name and line number.
  958.     (setq alist (or compilation-error-regexp-alist
  959.             (error "compilation-error-regexp-alist is empty!"))
  960.       subexpr (1+ error-group))
  961.     (while alist
  962.       (setq error-regexp-groups (cons (list subexpr
  963.                         (+ subexpr (nth 1 (car alist)))
  964.                         (+ subexpr (nth 2 (car alist))))
  965.                       error-regexp-groups))
  966.       (setq subexpr (+ subexpr 1 (count-regexp-groupings (car (car alist)))))
  967.       (setq alist (cdr alist)))
  968.  
  969.     (setq orig default-directory)
  970.     (setq orig-expanded (file-truename orig))
  971.     (setq parent-expanded (expand-file-name "../" orig-expanded))
  972.  
  973.     (while (and (not found-desired)
  974.         ;; We don't just pass LIMIT-SEARCH to re-search-forward
  975.         ;; because we want to find matches containing LIMIT-SEARCH
  976.         ;; but which extend past it.
  977.         (re-search-forward regexp nil t))
  978.  
  979.       ;; Figure out which constituent regexp matched.
  980.       (cond ((match-beginning enter-group)
  981.          ;; The match was the enter-directory regexp.
  982.          (let ((dir
  983.             (file-name-as-directory
  984.              (expand-file-name
  985.               (buffer-substring (match-beginning (+ enter-group 1))
  986.                     (match-end (+ enter-group 1)))))))
  987.            ;; The directory name in the "entering" message
  988.            ;; is a truename.  Try to convert it to a form
  989.            ;; like what the user typed in.
  990.            (setq dir
  991.              (compile-abbreviate-directory dir orig orig-expanded
  992.                            parent-expanded))
  993.            (setq compilation-directory-stack
  994.              (cons dir compilation-directory-stack))
  995.            (and (file-directory-p dir)
  996.             (setq default-directory dir))))
  997.         
  998.         ((match-beginning leave-group)
  999.          ;; The match was the leave-directory regexp.
  1000.          (let ((beg (match-beginning (+ leave-group 1)))
  1001.            (stack compilation-directory-stack))
  1002.            (if beg
  1003.            (let ((dir
  1004.               (file-name-as-directory
  1005.                (expand-file-name
  1006.                 (buffer-substring beg
  1007.                           (match-end (+ leave-group
  1008.                                 1)))))))
  1009.              ;; The directory name in the "entering" message
  1010.              ;; is a truename.  Try to convert it to a form
  1011.              ;; like what the user typed in.
  1012.              (setq dir
  1013.                (compile-abbreviate-directory dir orig orig-expanded
  1014.                              parent-expanded))
  1015.              (while (and stack
  1016.                  (not (string-equal (car stack) dir)))
  1017.                (setq stack (cdr stack)))))
  1018.            (setq compilation-directory-stack (cdr stack))
  1019.            (setq stack (car compilation-directory-stack))
  1020.            (if stack
  1021.            (setq default-directory stack))
  1022.            ))
  1023.         
  1024.         ((match-beginning error-group)
  1025.          ;; The match was the composite error regexp.
  1026.          ;; Find out which individual regexp matched.
  1027.          (setq alist error-regexp-groups)
  1028.          (while (and alist
  1029.              (null (match-beginning (car (car alist)))))
  1030.            (setq alist (cdr alist)))
  1031.          (if alist
  1032.          (setq alist (car alist))
  1033.            (error "compilation-parse-errors: impossible regexp match!"))
  1034.          
  1035.          ;; Extract the file name and line number from the error message.
  1036.          (let ((beginning-of-match (match-beginning 0)) ;looking-at nukes
  1037.            (filename
  1038.             (save-excursion
  1039.               (goto-char (match-end (nth 1 alist)))
  1040.               (skip-chars-backward " \t")
  1041.               (let ((name (buffer-substring (match-beginning (nth 1 alist))
  1042.                             (point))))
  1043.             (expand-file-name name default-directory))))
  1044.            (linenum (save-restriction
  1045.                   (narrow-to-region
  1046.                    (match-beginning (nth 2 alist))
  1047.                    (match-end (nth 2 alist)))
  1048.                   (goto-char (point-min))
  1049.                   (if (looking-at "[0-9]")
  1050.                   (read (current-buffer))))))
  1051.            ;; Locate the erring file and line.
  1052.            ;; Cons a new elt onto compilation-error-list,
  1053.            ;; giving a marker for the current compilation buffer
  1054.            ;; location, and the file and line number of the error.
  1055.            (save-excursion
  1056.          (beginning-of-line 1)
  1057.          (setq compilation-error-list
  1058.                (cons (cons (point-marker)
  1059.                    (cons filename linenum))
  1060.                  compilation-error-list)))
  1061.            (setq compilation-num-errors-found
  1062.              (1+ compilation-num-errors-found))
  1063.            (and find-at-least (>= compilation-num-errors-found
  1064.                       find-at-least)
  1065.             ;; We have found as many new errors as the user wants.
  1066.             ;; We continue to parse until we have seen all
  1067.             ;; the consecutive errors in the same file,
  1068.             ;; so the error positions will be recorded as markers
  1069.             ;; in this buffer that might change.
  1070.             (cdr compilation-error-list) ; Must check at least two.
  1071.             (not (equal (car (cdr (nth 0 compilation-error-list)))
  1072.                 (car (cdr (nth 1 compilation-error-list)))))
  1073.             (progn
  1074.               ;; Discard the error just parsed, so that the next
  1075.               ;; parsing run can get it and the following errors in
  1076.               ;; the same file all at once.  If we didn't do this, we
  1077.               ;; would have the same problem we are trying to avoid
  1078.               ;; with the test above, just delayed until the next run!
  1079.               (setq compilation-error-list
  1080.                 (cdr compilation-error-list))
  1081.               (goto-char beginning-of-match)
  1082.               (setq found-desired t)))
  1083.            )
  1084.          )
  1085.         (t
  1086.          (error "compilation-parse-errors: known groups didn't match!")))
  1087.  
  1088.       (message "Parsing error messages...%d (%d%% of buffer)"
  1089.            compilation-num-errors-found
  1090.            (/ (* 100 (point)) (point-max)))
  1091.  
  1092.       (and limit-search (>= (point) limit-search)
  1093.        ;; The user wanted a specific error, and we're past it.
  1094.        (setq found-desired t)))
  1095.     (setq compilation-parsing-end (if found-desired
  1096.                       (point)
  1097.                     ;; We have searched the whole buffer.
  1098.                     (point-max))))
  1099.   (setq compilation-error-list (nreverse compilation-error-list))
  1100.   (message "Parsing error messages...done"))
  1101.  
  1102. ;; If directory DIR is a subdir of ORIG or of ORIG's parent,
  1103. ;; return a relative name for it starting from ORIG or its parent.
  1104. ;; ORIG-EXPANDED is an expanded version of ORIG.
  1105. ;; PARENT-EXPANDED is an expanded version of ORIG's parent.
  1106. ;; Those two args could be computed here, but we run faster by
  1107. ;; having the caller compute them just once.
  1108. (defun compile-abbreviate-directory (dir orig orig-expanded parent-expanded)
  1109.   (if (and (> (length dir) (length orig-expanded))
  1110.        (string= orig-expanded
  1111.             (substring dir 0 (length orig-expanded))))
  1112.       (setq dir
  1113.         (concat orig
  1114.             (substring dir (length orig-expanded)))))
  1115.   (if (and (> (length dir) (length parent-expanded))
  1116.        (string= parent-expanded
  1117.             (substring dir 0 (length parent-expanded))))
  1118.     (setq dir
  1119.       (concat (file-name-directory
  1120.            (directory-file-name orig))
  1121.           (substring dir (length parent-expanded)))))
  1122.   dir)
  1123.  
  1124. (provide 'compile)
  1125.  
  1126. ;;; compile.el ends here
  1127.